home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 016a / compexe.zip / READ.ME < prev   
Text File  |  1988-08-10  |  2KB  |  29 lines

  1.     This is the source and executable versions of compress, modified to
  2. compile with Turbo C.  The version I got was modified to compile with
  3. MSC; I've changed some stuff so that it will compile under Turbo C and
  4. I fixed some problems that with the DOS version.
  5.      It is useful in transfering files with Unix systems, since text files
  6. are often compressed by about 50%, thus halving transmission time.  Also,
  7. it is a nice compression utility for single files since you don't have to do
  8. an archive listing to see what is in the file.  Unlike archiving utilities
  9. it automatically removes the (un)compressed version when you compress/
  10. uncompress.  Finally, if the program is named zcat.exe it will behave the 
  11. same way compress does on Unix systems when invoked under that name; this can
  12. be very useful.
  13.      Unfortunately piping stuff into compress on DOS does not seem to work 
  14. well, and you can't pipe into uncompress because DOS is braindead about piping 
  15. binary files; it stops writing to the temporary file when it encounters ^Z.
  16.      I could only get it to compile in the small model (12-bit version) under
  17. Turbo C.  This means that it can only uncompress files that were compressed
  18. using 12 bit codes, so if a file is to be compressed on some other system and
  19. uncompressed on DOS it should be compressed with the -b12 flag.  The 12 bit
  20. version has the advantage that it will work with much less free memory and
  21. is faster, though the compression is not quite as good.
  22.      Remember to use the -i (image) flag when compressing and uncompressing
  23. binary files under DOS. 
  24.      If anyone fixes the piping-to-compress problem or gets a >12bit version
  25. to compile, please let me know.
  26.  
  27.     John DuBois
  28.     spcecdt@ucscb.ucsc.edu
  29.